[USER (data scientist)]: Now, I want to make a line chart to compare win/loss ratios across years and surface types. Please generate and display a line plot visualizing the trends in average win/loss ratios by surface type and year in the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import matplotlib.pyplot as plt 
import seaborn as sns
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

create_figure(figsize=(12, 6)) 

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

# save data
save_plot("./pred_result/lineplot.png")
show_plot() 

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure thing! Here's how you can create the line chart: 
'''
import pandas as pd
import matplotlib.pyplot as plt 
import seaborn as sns
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

create_figure(figsize=(12, 6)) 

# YOUR SOLUTION BEGIN:
